home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
cpp_libs
/
answrbok
/
4_3.lha
/
4_3
/
4_3c.c
< prev
next >
Wrap
Text File
|
1993-08-08
|
313b
|
14 lines
* Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
* The C++ Answer Book */
* Tony Hansen */
* All rights reserved. */
/ print hello to a list of names
/ version 2
include <stream.h>
nt main(int argc, char **argv)
while (--argc > 0)
cout << "Hello, " << *++argv << "\n";
return 0;